home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 151-175 / scopedisk161 / cgnhlp / help.c < prev    next >
Text File  |  1995-03-19  |  879b  |  25 lines

  1. int help( )
  2.    printf("   \n " ) ; 
  3.    printf("                        CGNHLP  \n " ) ; 
  4.    printf("Author: Ned Kelly  \n " ) ; 
  5.    printf("   \n " ) ; 
  6.    printf("This program is designed to take a .DOC " ) ; 
  7.    printf("file which documents \n " ) ; 
  8.    printf("a particular program and generate a C so" ) ; 
  9.    printf("ucre file called \n " ) ; 
  10.    printf("HELP.C which is a routine which will dis" ) ; 
  11.    printf("play what was in \n " ) ; 
  12.    printf("the .DOC file.  \n " ) ; 
  13.    printf("   \n " ) ; 
  14.    printf("Calling sequence is:  \n " ) ; 
  15.    printf("   CGNHLP ?             Display this fil" ) ; 
  16.    printf("e. \n " ) ; 
  17.    printf("   CGNHLP filename      From filename.do" ) ; 
  18.    printf("c generate HELP.C \n " ) ; 
  19.    printf("   CGNHLP               Prompt for filen" ) ; 
  20.    printf("ame and generate HELP.C \n " ) ; 
  21.    printf("   \n " ) ; 
  22.    return( 0 ) ; 
  23.